6c546220a3f9cd72844195f235554433683abdaf,Mage/src/mage/target/common/TargetCardInYourGraveyard.java,TargetCardInYourGraveyard,canChoose,#UUID#UUID#Game#,103

Before Change


    }
    @Override
    public boolean canChoose(UUID sourceId, UUID sourceControllerId, Game game) {
        return canChoose(sourceControllerId, game);
    }

    @Override

After Change


        return false;
    }
    @Override
    public boolean canChoose(UUID sourceId, UUID sourceControllerId, Game game) {
        if (game.getPlayer(sourceControllerId).getGraveyard().count(filter, sourceId, sourceControllerId, game) >= this.minNumberOfTargets) {
            return true;
        }
        return false;
    }

    @Override